Newer
Older
Import / applications / RocketMan / Source Code / Music.h
@John John on 29 Dec 2020 285 bytes bulk import from macbookpro checkouts
/*
 *  Music.h
 *  iphone-gl-app
 *
 *  Created by John Ryland on 14/06/09.
 *  Copyright 2009 InvertedLogic. All rights reserved.
 *
 */

#ifndef MUSIC_H
#define MUSIC_H


class Music
{
public:
	Music();
	void playMusic(const char *file);
private:
	void *dptr;
};


#endif // MUSIC_H